input[type="checkbox"]{
  cursor: pointer !important;
}

input, textarea{
  cursor:text;
  outline: none;
  border:none;
  margin: 10px;
  display: block;
}

textarea{
  width: 100%;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  resize: vertical;
  min-height: 200px;
}

select, option, button, a{
  cursor:pointer !important;
  outline: none;
  border:none;
  margin-top: 10px !important;
}

button{
  color: white !important;
  display: block;
  text-align: center;
  background-color: #c59d5b;
  border-radius: 5px;
  width: fit-content;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-top: 10px;
  box-shadow: 2px 2px 3px black;
  margin-top: 10px !important;
}

.fullsize-content {
  width: 100%;
  margin-top: 30px !important;
}
.contact-form {
  background-color:#444444;
  margin: 0;
  padding: 20px;
}

.contact-form-inner{
  margin: auto;
  width: 780px;
  color: white;
}

.contact-form-inner input, select, option, textarea{
  color: #444444 !important;
  background-color:white;
  border-radius: 5px;
  padding: 10px;
  border: none;
  margin-top: 10px !important;
}

.contact-form-header{
  text-align: center;
  color: #c19752;
}

.contact-form-grid{
  margin-top: 30px;
  display: grid;
  grid-column-gap: 10px;
  grid-template-areas: "label select"
  "mail mail"
  "firstname lastname"
  "phone phone"
  "reference reference"
  "content content"
  "message message"
  "dsgvo dsgvo"
  "captchatext captcha"
  "nocontent1 nocontent1"
  "send nocontent2"
  ;
  grid-template-columns: 50% 50%;
}

.contact-label{
  grid-area: label;  
  margin-top: 20px;
}

.contact-select{
  grid-area: select;
  background-color: #444444 !important;
  border: 1px solid #c19752;
  color: white !important;
}

.contact-mail{
  grid-area: mail;
}
.contact-firstname{
  grid-area: firstname;
}
.contact-lastname{
  grid-area: lastname;
}
.contact-phone{
  grid-area: phone;
}
.contact-reference{
  grid-area: reference;
}
.contact-content{
  grid-area: content;
}
.contact-message-save{
  grid-area: message;
}
.contact-dsgvo{
  grid-area: dsgvo;
}
.nocontent1{
  grid-area: nocontent1;
  margin-top: 10px;
}
.contact-captcha{
  grid-area: captcha;
}
.captcha-text{
  grid-area: captchatext;
}
.nocontent2{
  grid-area: nocontent2;
}
#contactbutton{
  grid-area: send;
  visibility: hidden;
}
.combined-element input, select, textarea, option, button{
  display: inline-block;
}

.contact-captcha canvas{
  border: 1px solid #c59d5b;
  border-radius: 10px;
  margin-top: 10px;
  display: inline;
  width: 200px !important;
}

.contact-captcha input{
  width: 200px !important;
  display: inline;
}
.contact-captcha button{
  margin-left: 20px !important;
}

@media only screen and (max-width: 882px) {
.contact-form-inner{
  width: 80vw;
  color: white;
  margin: 0px;
}

.contact-form-grid {
  margin-top: 30px;
  display: grid;
  grid-column-gap: 10px;
  grid-template-areas:
"label       select    " 
"mail        mail      " 
"firstname   lastname  " 
"phone       phone     " 
"reference   reference " 
"content     content   " 
"message     message   " 
"dsgvo       dsgvo     " 
"captchatext nocontent1   " 
"captcha  nocontent1" 
"send        nocontent2";
  grid-template-columns: 50% 50%;
}
}